home *** CD-ROM | disk | FTP | other *** search
/ Power Utilities / Power Utilities.iso / utility / pro211 / gifv.slu < prev    next >
Encoding:
Text File  |  1993-10-06  |  443 b   |  20 lines

  1. ;
  2. ; GIFV.SLU
  3. ; Take every image file in the current directory and
  4. ; print a report to the screen.
  5. ;
  6. ; NOTE: If you remove the ";" from in front of the PRINTER-ON
  7. ;       command then the report will be sent to the printer!
  8. ;
  9.  
  10.         system cls
  11. ;        Printer-ON
  12.         change-path *.?
  13. :loop
  14.         echo %file_name%, %res_x%x%res_y%x%image_colors% colors.
  15.         skipnext :exit
  16.         goto :loop
  17. :exit
  18.         ENTER
  19.  
  20.